/******************************************************************************* * Copyright (c) 2012, Project: FP7-ICT-257930 Aniketos * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * - Neither the name of institution nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ /** */ package org.eclipse.bpmn2.impl; import java.util.Collection; import java.util.List; import org.eclipse.bpmn2.Bpmn2Package; import org.eclipse.bpmn2.DataInput; import org.eclipse.bpmn2.InputSet; import org.eclipse.bpmn2.OutputSet; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.util.EObjectWithInverseEList; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Input Set</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.bpmn2.impl.InputSetImpl#getDataInputRefs <em>Data Input Refs</em>}</li> * <li>{@link org.eclipse.bpmn2.impl.InputSetImpl#getOptionalInputRefs <em>Optional Input Refs</em>}</li> * <li>{@link org.eclipse.bpmn2.impl.InputSetImpl#getWhileExecutingInputRefs <em>While Executing Input Refs</em>}</li> * <li>{@link org.eclipse.bpmn2.impl.InputSetImpl#getOutputSetRefs <em>Output Set Refs</em>}</li> * <li>{@link org.eclipse.bpmn2.impl.InputSetImpl#getName <em>Name</em>}</li> * </ul> * </p> * * @generated */ public class InputSetImpl extends BaseElementImpl implements InputSet { /** * The cached value of the '{@link #getDataInputRefs() <em>Data Input Refs</em>}' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getDataInputRefs() * @generated * @ordered */ protected EList<DataInput> dataInputRefs; /** * The cached value of the '{@link #getOptionalInputRefs() <em>Optional Input Refs</em>}' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getOptionalInputRefs() * @generated * @ordered */ protected EList<DataInput> optionalInputRefs; /** * The cached value of the '{@link #getWhileExecutingInputRefs() <em>While Executing Input Refs</em>}' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getWhileExecutingInputRefs() * @generated * @ordered */ protected EList<DataInput> whileExecutingInputRefs; /** * The cached value of the '{@link #getOutputSetRefs() <em>Output Set Refs</em>}' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getOutputSetRefs() * @generated * @ordered */ protected EList<OutputSet> outputSetRefs; /** * The default value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected static final String NAME_EDEFAULT = null; /** * The cached value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected String name = NAME_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected InputSetImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return Bpmn2Package.eINSTANCE.getInputSet(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public List<DataInput> getDataInputRefs() { if (dataInputRefs == null) { dataInputRefs = new EObjectWithInverseEList.ManyInverse<DataInput>(DataInput.class, this, Bpmn2Package.INPUT_SET__DATA_INPUT_REFS, Bpmn2Package.DATA_INPUT__INPUT_SET_REFS); } return dataInputRefs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public List<DataInput> getOptionalInputRefs() { if (optionalInputRefs == null) { optionalInputRefs = new EObjectWithInverseEList.ManyInverse<DataInput>(DataInput.class, this, Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS, Bpmn2Package.DATA_INPUT__INPUT_SET_WITH_OPTIONAL); } return optionalInputRefs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public List<DataInput> getWhileExecutingInputRefs() { if (whileExecutingInputRefs == null) { whileExecutingInputRefs = new EObjectWithInverseEList.ManyInverse<DataInput>(DataInput.class, this, Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS, Bpmn2Package.DATA_INPUT__INPUT_SET_WITH_WHILE_EXECUTING); } return whileExecutingInputRefs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public List<OutputSet> getOutputSetRefs() { if (outputSetRefs == null) { outputSetRefs = new EObjectWithInverseEList.ManyInverse<OutputSet>(OutputSet.class, this, Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS, Bpmn2Package.OUTPUT_SET__INPUT_SET_REFS); } return outputSetRefs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getName() { return name; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setName(String newName) { String oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, Bpmn2Package.INPUT_SET__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: return ((InternalEList<InternalEObject>)(InternalEList<?>)getDataInputRefs()).basicAdd(otherEnd, msgs); case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: return ((InternalEList<InternalEObject>)(InternalEList<?>)getOptionalInputRefs()).basicAdd(otherEnd, msgs); case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: return ((InternalEList<InternalEObject>)(InternalEList<?>)getWhileExecutingInputRefs()).basicAdd(otherEnd, msgs); case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: return ((InternalEList<InternalEObject>)(InternalEList<?>)getOutputSetRefs()).basicAdd(otherEnd, msgs); } return super.eInverseAdd(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: return ((InternalEList<?>)getDataInputRefs()).basicRemove(otherEnd, msgs); case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: return ((InternalEList<?>)getOptionalInputRefs()).basicRemove(otherEnd, msgs); case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: return ((InternalEList<?>)getWhileExecutingInputRefs()).basicRemove(otherEnd, msgs); case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: return ((InternalEList<?>)getOutputSetRefs()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: return getDataInputRefs(); case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: return getOptionalInputRefs(); case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: return getWhileExecutingInputRefs(); case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: return getOutputSetRefs(); case Bpmn2Package.INPUT_SET__NAME: return getName(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: getDataInputRefs().clear(); getDataInputRefs().addAll((Collection<? extends DataInput>)newValue); return; case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: getOptionalInputRefs().clear(); getOptionalInputRefs().addAll((Collection<? extends DataInput>)newValue); return; case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: getWhileExecutingInputRefs().clear(); getWhileExecutingInputRefs().addAll((Collection<? extends DataInput>)newValue); return; case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: getOutputSetRefs().clear(); getOutputSetRefs().addAll((Collection<? extends OutputSet>)newValue); return; case Bpmn2Package.INPUT_SET__NAME: setName((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: getDataInputRefs().clear(); return; case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: getOptionalInputRefs().clear(); return; case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: getWhileExecutingInputRefs().clear(); return; case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: getOutputSetRefs().clear(); return; case Bpmn2Package.INPUT_SET__NAME: setName(NAME_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: return dataInputRefs != null && !dataInputRefs.isEmpty(); case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: return optionalInputRefs != null && !optionalInputRefs.isEmpty(); case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: return whileExecutingInputRefs != null && !whileExecutingInputRefs.isEmpty(); case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: return outputSetRefs != null && !outputSetRefs.isEmpty(); case Bpmn2Package.INPUT_SET__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (name: "); result.append(name); result.append(')'); return result.toString(); } } //InputSetImpl